@import url('https://fonts.googleapis.com/css2?family=Asap:wght@400;500;700&display=swap');
:root{
    --color : #24272e;
    --font : Asap, sans-serif;
    --badge-color: #E2584d;
}
*{
    margin: 0;
    padding: 0;
}
body{
    background-color: var(--color);
}
header{
    background-color: white;
    padding: 20px 0;
    width: 100%;
}
header > h1{
    font-family: var(--font);
    text-align: center;
}
.score-board{
    margin: 20px auto;
    border: 3px solid white;
    border-radius: 4px;
    text-align: center;
    width: 200px;
    color: white;
    font-size: 46px;
    padding: 15px 20px;
    font-family: var(--font);
    position: relative;
}
.score-badge{
    background-color: var(--badge-color);
    font-size: 14px;
    padding: 2px 10px;
}
#user-label{
    position: absolute;
    top: 30px;
    left: -25px;
}
#comp-label{
    position: absolute;
    top: 30px;
    right: -30px;
}
.result{
    font-size: 40px;
    color: white;
}
.result > p{
    text-align: center;
    font-weight: 600;
    font-family: var(--font);
}
.choices{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}
.choice{
    text-align: center;
    border: 3px solid white;
    border-radius: 50%;
    padding: 10px;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.choice:hover{
    background-color: #181a1f;
}
#action-message{
    text-align: center;
    color: white;
    font-family: var(--font);
    font-size: 20px;
    margin-top: 30px;
}
.green{
    border: 4px solid yellowgreen;
    box-shadow: 0 0 10px darkgreen;
}
.red{
    border: 4px solid rgb(248, 69, 69);
    box-shadow: 0 0 10px red;
}
.gray{
    border: 4px solid rgb(63, 63, 63) !important;
    box-shadow: 0 0 10px rgb(199, 194, 194) !important;
}
a{
    text-decoration: none;
}